crypto/tls.clientHandshakeStateTLS13.hello (field)

28 uses

	crypto/tls (current package)
		handshake_client.go#L255: 			hello:       hello,
		handshake_client_tls13.go#L23: 	hello       *clientHelloMsg
		handshake_client_tls13.go#L56: 	if hs.ecdheKey == nil || len(hs.hello.keyShares) != 1 {
		handshake_client_tls13.go#L66: 	if err := transcriptMsg(hs.hello, hs.transcript); err != nil {
		handshake_client_tls13.go#L148: 	if !bytes.Equal(hs.hello.sessionId, hs.serverHello.sessionId) {
		handshake_client_tls13.go#L158: 	selectedSuite := mutualCipherSuiteTLS13(hs.hello.cipherSuites, hs.serverHello.cipherSuite)
		handshake_client_tls13.go#L212: 		hs.hello.cookie = hs.serverHello.cookie
		handshake_client_tls13.go#L225: 		for _, id := range hs.hello.supportedCurves {
		handshake_client_tls13.go#L249: 		hs.hello.keyShares = []keyShare{{group: curveID, data: key.PublicKey().Bytes()}}
		handshake_client_tls13.go#L252: 	hs.hello.raw = nil
		handshake_client_tls13.go#L253: 	if len(hs.hello.pskIdentities) > 0 {
		handshake_client_tls13.go#L261: 			hs.hello.pskIdentities[0].obfuscatedTicketAge = uint32(ticketAge/time.Millisecond) + hs.session.ageAdd
		handshake_client_tls13.go#L269: 			helloBytes, err := hs.hello.marshalWithoutBinders()
		handshake_client_tls13.go#L275: 			if err := hs.hello.updateBinders(pskBinders); err != nil {
		handshake_client_tls13.go#L280: 			hs.hello.pskIdentities = nil
		handshake_client_tls13.go#L281: 			hs.hello.pskBinders = nil
		handshake_client_tls13.go#L285: 	if hs.hello.earlyData {
		handshake_client_tls13.go#L286: 		hs.hello.earlyData = false
		handshake_client_tls13.go#L290: 	if _, err := hs.c.writeHandshakeRecord(hs.hello, hs.transcript); err != nil {
		handshake_client_tls13.go#L345: 	if int(hs.serverHello.selectedIdentity) >= len(hs.hello.pskIdentities) {
		handshake_client_tls13.go#L350: 	if len(hs.hello.pskIdentities) != 1 || hs.session == nil {
		handshake_client_tls13.go#L409: 	err = c.config.writeKeyLog(keyLogLabelClientHandshake, hs.hello.random, clientSecret)
		handshake_client_tls13.go#L414: 	err = c.config.writeKeyLog(keyLogLabelServerHandshake, hs.hello.random, serverSecret)
		handshake_client_tls13.go#L440: 	if err := checkALPN(hs.hello.alpnProtocols, encryptedExtensions.alpnProtocol, c.quic != nil); err != nil {
		handshake_client_tls13.go#L464: 	if !hs.hello.earlyData && encryptedExtensions.earlyData {
		handshake_client_tls13.go#L468: 	if hs.hello.earlyData && !encryptedExtensions.earlyData {
		handshake_client_tls13.go#L611: 	err = c.config.writeKeyLog(keyLogLabelClientTraffic, hs.hello.random, hs.trafficSecret)
		handshake_client_tls13.go#L616: 	err = c.config.writeKeyLog(keyLogLabelServerTraffic, hs.hello.random, serverSecret)